home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000432_news@columbia.edu_Fri Nov 24 18:16:57 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21224
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun>); Fri, 24 Nov 1995 13:17:03 -0500
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id NAA01002 for kermit.misc@watsun; Fri, 24 Nov 1995 13:17:00 -0500
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: K95: xmit uuencoded file
  8. Date: 24 Nov 1995 18:16:57 GMT
  9. Organization: Columbia University
  10. Lines: 26
  11. Message-Id: <49526p$v8@apakabar.cc.columbia.edu>
  12. References: <494u5i$sue@kaiwan009.kaiwan.com>
  13. Nntp-Posting-Host: watsun.cc.columbia.edu
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <494u5i$sue@kaiwan009.kaiwan.com>,
  17. Jim <bayers@kaiwan009.kaiwan.com> wrote:
  18. >I'm enjoying my copy of K95, but I'm having trouble transmitting
  19. >a uuencoded file.
  20. >
  21. >Much of the uuencoded file is translated into different characters.
  22. >
  23. >I've read the manual and have tried setting both the command and 
  24. >terminal bytesize to 8.  The parity is off and the character-set is
  25. >set to transparent.
  26. >
  27. >The other communications programs I use can do this without any 
  28. >trouble.  They use an 8-N-1 connection.
  29. >
  30. Kermit 95 also uses an 8-N-1 connection by default.  The terminal bytesize
  31. is 8 by default, but that has no bearing on file transfer.
  32.  
  33. Kermit 95's default file transmission mode is BINARY.  A uuencoded file is
  34. a text file composed of only 7-bit ASCII characters.  When TRANSMIT'ing or
  35. SEND'ing a text file, you should first SET FILE TYPE TEXT.
  36.  
  37. Also, since TRANSMIT is not an error-checked form of file transfer, make
  38. sure you have an adequate means of flow control.  Buffer overruns could
  39. account for the garbled characters.
  40.  
  41. - Frank